Code cleanup. (gtk_separator_menu_item_class_init): Fix bugs in this code.
authorJonathan Blandford <jrb@redhat.com>
Tue, 30 Oct 2001 00:24:08 +0000 (00:24 +0000)
committerJonathan Blandford <jrb@src.gnome.org>
Tue, 30 Oct 2001 00:24:08 +0000 (00:24 +0000)
Mon Oct 29 19:18:35 2001  Jonathan Blandford  <jrb@redhat.com>

* gtk/gtkseparatormenuitem.c: Code cleanup.
(gtk_separator_menu_item_class_init): Fix bugs in this code.

ChangeLog
ChangeLog.pre-2-0
ChangeLog.pre-2-10
ChangeLog.pre-2-2
ChangeLog.pre-2-4
ChangeLog.pre-2-6
ChangeLog.pre-2-8
gtk/gtkseparatormenuitem.c
gtk/gtkseparatormenuitem.h

index 7b7e196d45990ada7ded39cf1539e954bd1d4491..39fb506f9445512736edd617de2ad9cd19077ee0 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+Mon Oct 29 19:18:35 2001  Jonathan Blandford  <jrb@redhat.com>
+
+       * gtk/gtkseparatormenuitem.c: Code cleanup.
+       (gtk_separator_menu_item_class_init): Fix bugs in this code.
+
 2001-10-29  jacob berkman  <jacob@ximian.com>
 
        * gdk/Makefile.am (LDFLAGS): 
index 7b7e196d45990ada7ded39cf1539e954bd1d4491..39fb506f9445512736edd617de2ad9cd19077ee0 100644 (file)
@@ -1,3 +1,8 @@
+Mon Oct 29 19:18:35 2001  Jonathan Blandford  <jrb@redhat.com>
+
+       * gtk/gtkseparatormenuitem.c: Code cleanup.
+       (gtk_separator_menu_item_class_init): Fix bugs in this code.
+
 2001-10-29  jacob berkman  <jacob@ximian.com>
 
        * gdk/Makefile.am (LDFLAGS): 
index 7b7e196d45990ada7ded39cf1539e954bd1d4491..39fb506f9445512736edd617de2ad9cd19077ee0 100644 (file)
@@ -1,3 +1,8 @@
+Mon Oct 29 19:18:35 2001  Jonathan Blandford  <jrb@redhat.com>
+
+       * gtk/gtkseparatormenuitem.c: Code cleanup.
+       (gtk_separator_menu_item_class_init): Fix bugs in this code.
+
 2001-10-29  jacob berkman  <jacob@ximian.com>
 
        * gdk/Makefile.am (LDFLAGS): 
index 7b7e196d45990ada7ded39cf1539e954bd1d4491..39fb506f9445512736edd617de2ad9cd19077ee0 100644 (file)
@@ -1,3 +1,8 @@
+Mon Oct 29 19:18:35 2001  Jonathan Blandford  <jrb@redhat.com>
+
+       * gtk/gtkseparatormenuitem.c: Code cleanup.
+       (gtk_separator_menu_item_class_init): Fix bugs in this code.
+
 2001-10-29  jacob berkman  <jacob@ximian.com>
 
        * gdk/Makefile.am (LDFLAGS): 
index 7b7e196d45990ada7ded39cf1539e954bd1d4491..39fb506f9445512736edd617de2ad9cd19077ee0 100644 (file)
@@ -1,3 +1,8 @@
+Mon Oct 29 19:18:35 2001  Jonathan Blandford  <jrb@redhat.com>
+
+       * gtk/gtkseparatormenuitem.c: Code cleanup.
+       (gtk_separator_menu_item_class_init): Fix bugs in this code.
+
 2001-10-29  jacob berkman  <jacob@ximian.com>
 
        * gdk/Makefile.am (LDFLAGS): 
index 7b7e196d45990ada7ded39cf1539e954bd1d4491..39fb506f9445512736edd617de2ad9cd19077ee0 100644 (file)
@@ -1,3 +1,8 @@
+Mon Oct 29 19:18:35 2001  Jonathan Blandford  <jrb@redhat.com>
+
+       * gtk/gtkseparatormenuitem.c: Code cleanup.
+       (gtk_separator_menu_item_class_init): Fix bugs in this code.
+
 2001-10-29  jacob berkman  <jacob@ximian.com>
 
        * gdk/Makefile.am (LDFLAGS): 
index 7b7e196d45990ada7ded39cf1539e954bd1d4491..39fb506f9445512736edd617de2ad9cd19077ee0 100644 (file)
@@ -1,3 +1,8 @@
+Mon Oct 29 19:18:35 2001  Jonathan Blandford  <jrb@redhat.com>
+
+       * gtk/gtkseparatormenuitem.c: Code cleanup.
+       (gtk_separator_menu_item_class_init): Fix bugs in this code.
+
 2001-10-29  jacob berkman  <jacob@ximian.com>
 
        * gdk/Makefile.am (LDFLAGS): 
index 77b6b06d20815393b97ba2341212eebdab39ed16..3d8d570745e2f4e6164056913ad419984e0f30b4 100644 (file)
  * Modified by the GTK+ Team and others 1997-2000.  See the AUTHORS
  * file for a list of people on the GTK+ Team.  See the ChangeLog
  * files for a list of changes.  These files are distributed with
- * GTK+ at ftp://ftp.gtk.org/pub/gtk/. 
+ * GTK+ at ftp://ftp.gtk.org/pub/gtk/.
  */
 
 #include "gtkseparatormenuitem.h"
 
-static void gtk_separator_menu_item_class_init (GtkSeparatorMenuItemClass *klass);
+static void gtk_separator_menu_item_class_init (GtkSeparatorMenuItemClass *class);
 
-static GtkMenuItemClass *parent_class;
-
-GtkType
+GType
 gtk_separator_menu_item_get_type (void)
 {
-  static GtkType separator_menu_item_type = 0;
+  static GType separator_menu_item_type = 0;
 
   if (!separator_menu_item_type)
     {
       static const GTypeInfo separator_menu_item_info =
       {
-       sizeof (GtkSeparatorMenuItemClass),
-       NULL,           /* base_init */
-       NULL,           /* base_finalize */
-       (GClassInitFunc) gtk_separator_menu_item_class_init,
-       NULL,           /* class_finalize */
-       NULL,           /* class_data */
-       sizeof (GtkSeparatorMenuItem),
-       16,             /* n_preallocs */
-       (GInstanceInitFunc) NULL,
+        sizeof (GtkSeparatorMenuItemClass),
+        NULL, /* base_init */
+        NULL, /* base_finalize */
+        (GClassInitFunc) gtk_separator_menu_item_class_init,
+        NULL, /* class_finalize */
+        NULL, /* class_data */
+        sizeof (GtkSeparatorMenuItem),
+        0,    /* n_preallocs */
+        NULL, /* instance_init */
       };
 
-      separator_menu_item_type = g_type_register_static (GTK_TYPE_MENU_ITEM, "GtkSeparatorMenuItem", &separator_menu_item_info, 0);
+      separator_menu_item_type =
+       g_type_register_static (GTK_TYPE_MENU_ITEM, "GtkSeparatorMenuItem",
+                               &separator_menu_item_info, 0);
     }
 
   return separator_menu_item_type;
 }
 
 static void
-gtk_separator_menu_item_class_init (GtkSeparatorMenuItemClass *klass)
+gtk_separator_menu_item_class_init (GtkSeparatorMenuItemClass *class)
 {
-  parent_class = gtk_type_class (gtk_menu_item_get_type ());
+  GTK_CONTAINER_CLASS (class)->child_type = NULL;
 }
 
-GtkWidget*
+GtkWidget *
 gtk_separator_menu_item_new (void)
 {
-  return GTK_WIDGET (gtk_type_new (gtk_separator_menu_item_get_type ()));
+  return g_object_new (GTK_TYPE_SEPARATOR_MENU_ITEM, NULL);
 }
index 7b6a5519526b89cd47cb264ba7cd6560422e4b0d..b34eccbcff0471cf006f5f03e3153dcf36978683 100644 (file)
@@ -58,7 +58,7 @@ struct _GtkSeparatorMenuItemClass
 };
 
 
-GtkType           gtk_separator_menu_item_get_type        (void) G_GNUC_CONST;
+GType     gtk_separator_menu_item_get_type        (void) G_GNUC_CONST;
 GtkWidget* gtk_separator_menu_item_new            (void);